home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / XML Utilities / XML Shell / SETUP.EXE / {app} / Templates / XSLT Sample - Copy All.xsl
Encoding:
Extensible Markup Language  |  2003-05-01  |  302 b   |  10 lines

  1. <?xml version="1.0"?>
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3.     <xsl:output omit-xml-declaration="yes"/>
  4.     <xsl:template match="/ | @* | node()">
  5.         <xsl:copy>
  6.             <xsl:apply-templates select="@* | node()"/>
  7.         </xsl:copy>
  8.     </xsl:template>
  9. </xsl:stylesheet>
  10.